home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / despereaux-swings.swf / scripts / MainLogo.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  478 b   |  27 lines

  1. package
  2. {
  3.    import flash.display.MovieClip;
  4.    
  5.    [Embed(source="/_assets/assets.swf", symbol="MainLogo")]
  6.    public dynamic class MainLogo extends MovieClip
  7.    {
  8.        
  9.       
  10.       public function MainLogo()
  11.       {
  12.          super();
  13.          addFrameScript(0,frame1,1,frame2);
  14.       }
  15.       
  16.       internal function frame1() : *
  17.       {
  18.          stop();
  19.       }
  20.       
  21.       internal function frame2() : *
  22.       {
  23.          stop();
  24.       }
  25.    }
  26. }
  27.